FRAME_MENU_BAR_LINES (f) = nlines;
x_set_menu_bar_lines_1 (f->root_window, nlines - olines);
- x_set_window_size (f, FRAME_WIDTH (f),
- FRAME_HEIGHT (f) + nlines - olines);
+ /* Use FRAME_NEW_WIDTH, HEIGHT so as not to override a size change
+ made by the user but not fully reflected in the Emacs frame object. */
+ x_set_window_size (f,
+ (FRAME_NEW_WIDTH (f)
+ ? FRAME_NEW_WIDTH (f)
+ : FRAME_WIDTH (f)),
+ ((FRAME_NEW_HEIGHT (f)
+ ? FRAME_NEW_HEIGHT (f)
+ : FRAME_HEIGHT (f))
+ + nlines - olines));
}
/* Change the name of frame F to ARG. If ARG is nil, set F's name to
XSetWindowAttributes attributes;
unsigned long attribute_mask;
XClassHint class_hints;
+ char *shortname;
+ char *p;
attributes.background_pixel = f->display.x->background_pixel;
attributes.border_pixel = f->display.x->border_pixel;
screen_visual, /* set in Fx_open_connection */
attribute_mask, &attributes);
- class_hints.res_name = (char *) XSTRING (f->name)->data;
+ /* X resource names should not have periods in them.
+ So copy the frame name, discarding from the first period onward. */
+ shortname = (char *) alloca (XSTRING (f->name)->size + 1);
+ bcopy (XSTRING (f->name)->data, shortname, XSTRING (f->name)->size + 1);
+ for (p = shortname; *p; p++)
+ if (*p == '.')
+ *p = 0;
+
+ class_hints.res_name = shortname;
class_hints.res_class = EMACS_CLASS;
XSetClassHint (x_current_display, FRAME_X_WINDOW (f), &class_hints);